home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / admin / linuxcon.000 / linuxcon / linuxconf-1.6 / xconf / stubs.c < prev    next >
C/C++ Source or Header  |  1996-01-26  |  295b  |  19 lines

  1. #include <stdlib.h>
  2. #include "../dialog/dialog.h"
  3. #include "../userconf/userconf.h"
  4.  
  5. int xconf_edit ()
  6. {
  7.     if (perm_rootaccess("to configure X")){
  8.         dialog_end();
  9.         system ("/usr/X11R6/bin/xf86config");
  10.         dialog_clear();
  11.     }
  12.     return 0;
  13. }
  14. int xconf_main (int , char *[])
  15. {
  16.     return xconf_edit();
  17. }
  18.  
  19.